home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / pattern.h < prev    next >
C/C++ Source or Header  |  1989-09-06  |  868b  |  32 lines

  1. /*
  2.  * pattern.h --
  3.  *
  4.  *    Declarations of defines and procedures provided by the pattern-
  5.  *    matcher library.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/pattern/RCS/pattern.h,v 1.1 89/01/11 12:05:20 mlgray Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _PATTERN
  20. #define _PATTERN
  21.  
  22. # define B_PAREN 257
  23. # define E_PAREN 258
  24. # define AND 259
  25. # define OR 260
  26. # define NOT 261
  27. # define PATTERN 262
  28.  
  29. extern    int    Pattern_Match();
  30.  
  31. #endif _PATTERN
  32.